home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
s
/
ep_loadmodule.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
229b
|
19 lines
/* EaglePlayer - angegebenes Module laden & abspielen */
parse arg filename
address 'rexx_EP'
options results
Loadmodule filename
if result == "no" then do
say "Module not loaded !"
end
else do
say "Module loaded !"
end